All Questions
Tagged with pointersobject-oriented
4 questions
0votes
1answer
1kviews
How to call an unknown member function through an instance of a related class?
I have two classes. The first, called Game_Events, controls the objects and manages the general tasks. The second, called Button, is for one of those object instances. The example below is wrong but ...
3votes
1answer
2kviews
Is there a proper way to allow access to private list by reference?
I'm trying to provide a by-reference getter to a list of objects in a class. My setup looks something roughly like this: class c_Container { public: c_Item* Get(int uid); private: c_Item ...
5votes
4answers
3kviews
Was C designed to facilitate Object-Oriented programming?
I am trying to broaden my understanding of the history and development of object-oriented programming, and I am curious to find out if C was designed to facilitate Object-Oriented programming? (like ...
9votes
5answers
21kviews
Is there any difference between pointers and references? [duplicate]
References and pointers do the same thing as I know. Is there any difference between them? If there is no difference, why we call them reference not pointer?